home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
kernel
/
dev
/
ds3100.md
/
devScsiTapeConfig.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-18
|
1KB
|
33 lines
/*
* devScsiTapeConfig.c --
*
* Configuration file for SCSI tape drives. This file initializes the
* data structure containing the list of available SCSI Tape drive
* drivers available in the system.
*
* Copyright 1989 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#ifndef lint
static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds3100.md/devScsiTapeConfig.c,v 9.1 89/10/30 20:54:27 rab Exp $ SPRITE (Berkeley)";
#endif /* not lint */
#include "sprite.h"
#include "scsiTape.h"
#include "exabyteTape.h"
ReturnStatus ((*devSCSITapeAttachProcs[])()) = {
DevExabyteAttach,
};
int devNumSCSITapeTypes = sizeof(devSCSITapeAttachProcs) /
sizeof(devSCSITapeAttachProcs[0]);